This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Yentl Kireplopings 20.Jan.04 03:21 PM a Web browser Domino Designer6.0.2 CF2Windows 2000
I have an embedded view with an action button that updates the selected docs in the view. Works fine. I would like to refresh the uidoc that contains the embeddedview after the selected docs are updated. I added a uidoc.refresh, but it crashes the Notes Client. Does anyone have any ideas on a work around.
Thanks
David
Sub Click(Source As Button)
Dim ws As New NotesUIWorkspace
Dim uiview As NotesUIView
Dim dc As NotesDocumentCollection
Dim doc As NotesDocument
Set uiview = ws.CurrentView
Set dc = uiview.Documents
Set doc = dc.GetFirstDocument
While Not (doc Is Nothing)
doc.status="Complete"
Call doc.save(False,True)
Set doc=dc.GetNextDocument(doc)
Wend
Call uiview.DeselectAll
Dim uidoc As notesuidocument
Set uidoc=ws.CurrentDocument
Call uidoc.Refresh